Spring Boot 单元测试

Spring Boot 单元测试

概述

主要是通过 @RunWith@SpringBootTest 注解来开启单元测试功能

package com.funtl.hello.spring.boot;

import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.boot.test.web.client.TestRestTemplate;
import org.springframework.boot.web.server.LocalServerPort;
import org.springframework.http.ResponseEntity;
import org.springframework.test.context.junit4.SpringRunner;

import java.net.URL;

import static org.hamcrest.CoreMatchers.equalTo;
import static org.junit.Assert.assertThat;

@RunWith(SpringRunner.class)
@SpringBootTest(classes = HelloSpringBootApplication.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
public class HelloSpringBootApplicationTests {

    @LocalServerPort
    private int port;

    private URL base;

    @Autowired
    private TestRestTemplate template;

    @Before
    public void setUp() throws Exception {
        this.base = new URL("http://localhost:" + port + "/");
    }

    @Test
    public void contextLoads() {
        ResponseEntity<String> response = template.getForEntity(base.toString(), String.class);
        assertThat(response.getBody(), equalTo("Hello Spring Boot"));
    }

}

运行它会先启动 Spring Boot 工程,再启动单元测试


赏一赏
 上一篇
Spring Boot 常用配置 Spring Boot 常用配置
Spring Boot 常用配置概述本章节主要介绍一下 Spring Boot 中的一些常用配置,比如:自定义 Banner、配置日志、关闭特定的自动配置等。 自定义 Banner在 Spring Boot 启动的时候会有一个默认的启动图案
2019-11-23
下一篇 
第一个 Spring Boot 应用程序 第一个 Spring Boot 应用程序
第一个 Spring Boot 应用程序创建项目这里我们使用 Intellij IDEA 来新建一个 Spring Boot 项目。 Spring 初始化器 填写项目信息 选择版本和依赖 保存项目到指定目录 工程目录结构创建完成后的工程目录
2019-11-23